home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Assassins - Ultimate CD Games Collection 2
/
Assassins 2 - Ultimate Games No. 2 (1995)(Weird Science)[!][Amiga-CD32-CDTV].iso
/
misc
/
kids_disk_2
/
dred
/
dred.amosSourceCode
Wrap
AMOS Source Code
|
1993-08-01
|
1KB
|
69 lines
OTHERGATES
'
Procedure OTHERGATES
B$=Command Line$
SH=256 : LE=25
If Ntsc Then SH=200 : LE=19
Screen Open 0,640,SH,8,Hires
Hide : Flash Off : Curs Off
Palette $445,$FF0,$FFF,$F0,$F,$777,$0,$F74
Flash 6,"(F0f,20)(445,20)(ff0,20)(445,20)(00f,20)(445,20)(000,20)(445,20)"
Flash 7,"(445,20)(fff,20)(445,20)(0f0,20)(445,20)(ff0,20)(00f,20)(445,20)(00f,20)"
Colour Back Colour(0)
Cls 0
HERE:
Open In 1,B$
L=Lof(1)
FLG=0
Paper 0
Curs Off
Cls
C=0
PP=1
Z$=""
For N=1 To L
Pen 3
X$=Input$(1,1)
Z$=Z$+X$
If Asc(X$)=10
Print " ";
Print Z$ : Cup : Inc C : Z$=""
If C=LE
Print : Pen 2 : Centre ">> <<"
Pen 6
Locate 23, : Print "Left to continue ";
Pen 2 : Print "or";
Locate 43, : Pen 7 : Print "Right to quit ";
Pen 2 : Print : Print : Centre "Page" : Print PP : Inc PP
MK=0
Repeat : Until Mouse Click
MK=Mouse Key
Print MK
If MK=2
Goto THERE
Else Cls : Locate 0,1 : C=0
End If
End If
End If
Next N
Close 1
Pen 1
Print : Print : Centre "End Of This Text File" : Print : Print
Centre "click LEFT button to READ this file AGAIN"
Print : Print
Centre "or the RIGHT button to RETURN to main menu."
Repeat
Until Mouse Click
K=Mouse Key
If K=1 Then Cls : Goto HERE
THERE:
Flash Off
Cls
Set Font 5
Colour 2,$F0
Ink 2,0
Text 270,100,"Loading...."
Show
Command Line$="back"
Run "ram:Over_to"
End Proc